home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
convert
/
coolview
/
view50_4.pas
< prev
Wrap
Pascal/Delphi Source File
|
1995-03-05
|
570b
|
21 lines
{ View 50-lines screen in Text Mode }
{ Coded '95 by Paradise, 1995.III.3 }
{ Lublin, Poland }
{ paradise@bachus.umcs.lublin.pl }
{ }
{ Example : OBJ usage example }
{ }
{ Need : view50_3.obj }
{ }
uses Crt;
{$f+}
procedure Body; external;
{$l view50_3.obj}
{$f-}
begin
Body;
ReadKey;
asm mov ax,3h; int 10h; end;
end.